home *** CD-ROM | disk | FTP | other *** search
/ EuroCD 3 / EuroCD 3.iso / Programming / Amos / AMOSP61Ext / source / Error.lnk < prev    next >
Text File  |  1998-06-24  |  587b  |  27 lines

  1.     AddLabl    L_IFonc            +++ Illegal function call
  2.     moveq    #23,d0
  3.     Rjmp    L_Error
  4.  
  5.     AddLabl    L_Custom
  6.     lea    .ErrMes(pc),a0
  7.     moveq    #0,d1            * Can be trapped
  8.     moveq    #0,d3            * IMPORTANT!!!
  9.     moveq    #ExtNb,d2        * Number of extension
  10.     Rjmp    L_ErrorExt        * Jump to routine...
  11. .ErrMes
  12.     IFEQ    Languag-English
  13.     dc.b    "Couldn't get memory for the samples",0
  14.     dc.b    "Error during initialization",0            *3
  15.     ENDC
  16.     IFEQ    Languag-Deutsch
  17.     dc.b    "Kein Speicher mehr für die Samples",0
  18.     dc.b    "Fehler während der Initialisierung",0        *3
  19.     ENDC
  20.     even
  21.  
  22.     AddLabl    L_Custom2
  23.     moveq    #0,d1
  24.     moveq    #-1,d3
  25.     moveq    #ExtNb,d2
  26.     Rjmp    L_ErrorExt
  27.